1034fc6d4140d646ac22a5c230a60671516be99f,findbugs/src/java/edu/umd/cs/findbugs/ReadReturnShouldBeChecked.java,ReadReturnShouldBeChecked,sawOpcode,#number#,45
Before Change
if (seen == POP && sawRead) {
bugReporter.reportBug(new BugInstance("RR_NOT_CHECKED", NORMAL_PRIORITY)
.addClassAndMethod(this)
.addCalledMethod(this));
}
sawRead = false;
}
After Change
if (seen == POP && sawRead) {
bugReporter.reportBug(new BugInstance("RR_NOT_CHECKED", NORMAL_PRIORITY)
.addClassAndMethod(this)
.addCalledMethod(this)
.addSourceLine(this, readPC));
}
sawRead = false;
}